home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 March / PCWorld_2002-03_cd.bin / Software / TemaCD / xteq / setup.exe / {app} / plugins / XQ MSO2K Places 1.xpl < prev    next >
Text File  |  2000-12-09  |  3KB  |  102 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="5"
  4. "UIPATH"="Program Options\Microsoft Office\MS Office 2000\Open/Save Dialog"
  5. "NAME"="Visible Items"
  6. "VERSION"="1.03"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Show "Desktop" in places bar"
  9. "TEXT 2"="Show "Favorites" in places bar"
  10. "TEXT 3"="Show "My Documents" in places bar"
  11. "TEXT 4"="Show "Publishing/Network" in places bar"
  12. "TEXT 5"="Show "Recent" in places bar"
  13. "DESCRIPTION 1"="Office 2000 has an "Places Bar" on the right-side of its Open/Save dialog."
  14. "DESCRIPTION 2"="This dialog features a lot of system folders by default, but you can deactivate them here."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"=" "
  19. "COMMENT 2"="Thanks to http://www.pcnineoneone.com/tweaks/tweekz1g.html"
  20. "COMMENT 3"="Thanks also to Dunn Steve-BSD001 [Steve_Dunn-BSD001@email.mot.com] for the idea!"
  21.  
  22.  
  23.  
  24. sV1="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\StandardPlaces\Desktop\Show"
  25. sV2="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\StandardPlaces\Favorites\Show"
  26. sV3="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\StandardPlaces\MyDocuments\Show"
  27. sV4="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\StandardPlaces\Publishing\Show"
  28. sV5="HKCU\Software\Microsoft\Office\9.0\Common\Open Find\Places\StandardPlaces\Recent\Show"
  29.  
  30. sPCheck="HKCU\Software\Microsoft\Office\9.0\"
  31. Sub Plugin_Initialize 
  32. if RegPathExists(sPCheck) then
  33.    i=RegReadValue(sV1)
  34.    if i=1 or IsEmpty(i) then SetUiElement 1,true
  35.  
  36.    i=RegReadValue(sV2)
  37.    if i=1 or IsEmpty(i) then SetUiElement 2,true
  38.  
  39.    i=RegReadValue(sV3)
  40.    if i=1 or IsEmpty(i) then SetUiElement 3,true
  41.  
  42.    i=RegReadValue(sV4)
  43.    if i=1 or IsEmpty(i) then SetUiElement 4,true
  44.  
  45.    i=RegReadValue(sV5)
  46.    if i=1 or IsEmpty(i) then SetUiElement 5,true
  47.  
  48. else
  49.    disable()
  50. end if
  51. End Sub
  52.  
  53.  
  54. Sub Plugin_CheckData(ElementIndex)
  55. End Sub
  56.  
  57.  
  58.  
  59. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  60.  if GetUIElement(1)=true then
  61.     Call RegWriteValue(sV1,1,2)
  62.  else
  63.     Call RegWriteValue(sV1,0,2)
  64.  end if
  65.  
  66.  if GetUIElement(2)=true then
  67.     Call RegWriteValue(sV2,1,2)
  68.  else
  69.     Call RegWriteValue(sV2,0,2)
  70.  end if
  71.  
  72.  if GetUIElement(3)=true then
  73.     Call RegWriteValue(sV3,1,2)
  74.  else
  75.     Call RegWriteValue(sV3,0,2)
  76.  end if
  77.  
  78.  if GetUIElement(4)=true then
  79.     Call RegWriteValue(sV4,1,2)
  80.  else
  81.     Call RegWriteValue(sV4,0,2)
  82.  end if
  83.  
  84.  if GetUIElement(5)=true then
  85.     Call RegWriteValue(sV5,1,2)
  86.  else
  87.     Call RegWriteValue(sV5,0,2)
  88.  end if
  89.  
  90.  
  91.  
  92.  
  93.  Call Logoff()
  94. End Sub
  95.  
  96.  
  97. Sub Plugin_Terminate 
  98. End Sub
  99.  
  100.  
  101.  
  102.